home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
C/C++ Users Group Library 1996 July
/
C-C++ Users Group Library July 1996.iso
/
listings
/
v_07_03
/
v7n3052a.txt
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1987-01-01
|
334 b
|
20 lines
typedef struct SYMBOL {
int symtype;
char symname[1]; /* first character of symbol name */
} SYMBOL;
/*
* newsym - return a pointer to a symbol of a given length.
*/
SYMBOL *newsym(unsigned len) {
extern void *malloc();
return ( (SYMBOL *) malloc(sizeof(SYMBOL)+len) );
}